All Questions
Tagged with automated-testsintegration-testing
303 questions
0votes
0answers
31views
Testing Desktop Applications
Let's assume we have a desktop application that implements the CreateMyFile function and this function is tested via unit tests. On the other hand, we have a Make file menu item that, when selected, ...
0votes
0answers
38views
Integration test with XUnit, Mocking inner Http Request when using API call end to end test
i have a class that holds HttpClient that posts a request: public class PaPdfApiService : IPaPdfApiService { private readonly HttpClient _httpClient; private readonly ILogger<...
0votes
1answer
60views
Run connectedAndroidTests without re-installing APK
I have several instrumentation tests that I want to run as part of a build pipeline. I'm assembling and installing the APK on the device in a previous step and don't want it to run through that ...
0votes
0answers
45views
How to design and run automated test for virtual machine interoperability in github action?
I know there are numerous test libraries and automated github action test examples for tcp/udp scenarios. But for other socket types(i.e. VSOCK, Hyper-V Socket), I have no idea to design proper ...
2votes
0answers
95views
How to import a java package inside POM.xml?
I'm working on contract tests using Pact in a Java application with Quarkus. However, I'm running into a snag: I need to modify the requests before sending them, since authentication is required for ...
2votes
2answers
343views
JUnit 5 suites do not run parallel
I have a parent suite, that includes child suites, which themselves include different tests (the same test may be included in multiple child suites). If I enable concurreny, only those tests inside a ...
0votes
0answers
31views
How to test functionality that can only be accessed at the beginning of the next week?
Description: I am currently testing an 8base application and I have encountered a problem with a specific functionality that can only be tested at the beginning of the next week. Functionality: The ...
1vote
1answer
85views
How to perform Automation testing for two-three days business process [closed]
I'm relatively new to Automation testing. I've seen notes on automation testing for Static web pages and dynamic ones, even data driven. But in my project, we've got a web page where we load trades ...
2votes
1answer
1kviews
Where to put test-only migration scripts and how execute them?
I have SQL scripts which populate tables with test data. I want Flyway to execute them like that, Executed during production run & test run src/main/resources/migration contains V1_0.sql, V2_0....
0votes
1answer
147views
How can an app be automatically tested if it needs mic access on MacOS (Ventura 13.3)
I’m working on automated Jenkins CI tests for a realtime audio application. I use playwright to interact with the app, but the mic acces is requested by the app itself, not playwight/the nightly ...
2votes
0answers
54views
WP plugin integretion testing - how to enable additional plugins?
I'm setting up a pipeline to automate testing and releasing my WP plugin to my private Gitlab project package registry. Followed WP Plugin Integration Tests guide and set up a pipeline that uses WP ...
3votes
2answers
683views
Testing Python Package Dependencies
Lets say I have a widely distributed/used python package called foo that's designed to work with the following dependencies: pandas>=1.3.0 pyarrow>=8.0 python>=3.8 How do I make sure ...
1vote
0answers
61views
Scheduler jobs Testing
How do you test cron/lambda scheduler job in your project , is it through logs , expected behaviour , what level of testing unit , integrations etc , or any automation tool which you use to test them....
0votes
2answers
210views
"No such window" error when testing PayPal payments with Laravel Dusk
I'm trying to write an integration test to test PayPal's Standard Checkout, which appears in a popup window when the PayPal button is clicked. I've managed to come up with the test below, and watching ...
0votes
1answer
3kviews
How to get Code coverage for integration tests and Regression tests
I have set up the Regression Tests for my maven spring application using Rest Assured and TestNg framework and it works fine. I would like to set up unit tests for the same using Junit5 and get code ...